home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / CUJ9202.ARJ / 1002108A < prev    next >
Text File  |  1992-06-02  |  212b  |  7 lines

  1.  
  2.    printf("The value is '%s' \n", (x == 0 ? "zero" :
  3.                                   (x == 1 ? "one" :
  4.                                   (x == 2 ? "two" :
  5.                                   "lots"))); 
  6.  
  7.